Socket
Socket
Sign inDemoInstall

readable-wrap

Package Overview
Dependencies
5
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    readable-wrap

upgrade streams1 to streams2 streams as a standalone module


Version published
Weekly downloads
40K
increased by14.38%
Maintainers
1
Install size
141 kB
Created
Weekly downloads
 

Readme

Source

readable-wrap

upgrade streams1 to streams2 streams as a standalone module

This module provides a wrap function based on Readable().wrap() from node core but as a standalone module.

Use this module if you don't want to wait for a patch in node core to land that fixes falsey objectMode values in wrapped readable streams.

build status

testling badge

example

var split = require('split');
var wrap = require('readable-wrap');
var through = require('through2');

process.stdin.pipe(wrap.obj(split())).pipe(through.obj(write));

function write (buf, enc, next) {
    console.log(buf.length + ': ' + buf);
    next();
}

output:

$ echo -e 'one\ntwo\n\nthree' | node example/split.js 
3: one
3: two
0: 
5: three
0: 

In object mode you get the empty lines, which is handy if you need to perform a special action on empty lines such as to partition an HTTP request header from a body in a streaming fashion.

In non-object mode the empty lines get ignored because that is how node core streams work.

methods

var wrap = require('readable-wrap')

var stream = wrap(oldStream, opts)

Return a new streams2 stream based on the streams1 stream oldStream.

The opts will be passed to the underlying readable stream instance.

var stream = wrap.obj(oldStream, opts)

Return a new streams2 stream based on the streams1 stream oldStream with opts.objectMode set to true.

install

With npm do:

npm install readable-wrap

license

MIT

Keywords

FAQs

Last updated on 09 Jun 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc